home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Factory 2
/
Game Factory 2.iso
/
games4
/
fortune
/
runme.bat
< prev
next >
Wrap
DOS Batch File
|
1989-10-27
|
584b
|
35 lines
echo off
cls
echo
echo To run "FORTUNE" with a black and white monitor, select 1.
echo
echo To run "FORTUNE" with a color monitor, select 2.
echo
echo To run "FORTUNE" with a grey-scale monitor, select 3.
echo
getkey To quit, press any other key.
echo
if errorlevel 52 goto END
if errorlevel 51 goto THREE
if errorlevel 50 goto TWO
if errorlevel 49 goto ONE
goto END
:THREE
echo
echo Please wait.
echo
FORTUNE m
:TWO
echo
echo Please wait.
echo
FORTUNE c
goto END
:ONE
echo
echo Please wait.
echo
FORTUNE
goto END
:END